home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / MSDOS / (m)aan / BROWSE.DOC < prev    next >
Text File  |  1988-12-28  |  5KB  |  301 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.      
  7.               Browse                                 Charles Petzold
  8.               Command
  9.               _______________________________________________________
  10.  
  11.               Purpose   Permits scrolling forward and backward
  12.                         throughout a file without use of a word
  13.                         processing program.
  14.  
  15.               Format:   BROWSE [d:][path]filename[.ext] [/W]
  16.  
  17.               Remarks:  The DOS TYPE command does not permit you to
  18.                         scroll ahead or go back to previously
  19.                         displayed material in a file.  It also exits
  20.                         at the first instance of Ctrl-Z (ASCII 26,
  21.                         conventionally used as an End-of-File
  22.                         marker), making it impossible to scan binary
  23.                         (e.g. .COM) files for error messages,
  24.                         copyright notices, and the like.
  25.  
  26.                         BROWSE.COM overcomes these shortcomings,
  27.                         giving you the chance to go immediately to
  28.                         the top or to the end of a file (the Home and
  29.                         End keys, respectively), to the succeeding or
  30.                         previous screen (PgUp and PgDn), or to move
  31.                         up or down a line at a time (Up Arrow or Down
  32.                         Arrow).  To return to DOS, simply press the
  33.                         Escape key or Ctrl-Break.
  34.  
  35.                         Wide displays, e.g. a spreadsheet file, are
  36.                         not broken at 80 columns, as with TYPE.
  37.                         BROWSE ignores carriage returns (ASCII 13),
  38.                         breaking lines only on line feeds (ASCII 10).
  39.                         The Right Arrow key scrolls the display to
  40.                         the right in eight-character increments (see
  41.                         Note 3 below) to view wide displays; the Left
  42.                         Arrow key returns you immediately to column zero.
  43.  
  44.                         BROWSE expands tab characters (ASCII 9) to
  45.                         the next eight-character boundary, but does
  46.                         no other character processing unless the /W
  47.                         parameter is specified.  Use of the /W option
  48.                         permits using BROWSE with WordStar files.
  49.  
  50.                         Notes:
  51.  
  52.                         1.   BROWSE can run under TopView or Windows;
  53.                              specify "writes directly to screen" in
  54.                              the .PIF and use the default 52K memory
  55.                              requirement.  (The program actually
  56.                              requires only approximately 33K to run.)
  57.                              For the TopView PIF, specify that the
  58.                              program intercepts Interrupt 23h.
  59.  
  60.                         2.   BROWSE is compatible with the IBM
  61.                              monochrome, CGA, and EGA displays, and
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.                                      Page -2-
  77.  
  78.                              will even run in the EGA 43-line mode.
  79.                              Files prepared with word-processors that
  80.                              employ a one-line-per-paragraph format
  81.                              (such as Microsoft Word and XyWrite) may
  82.                              to require excessive right scrolling,
  83.                              however.
  84.  
  85.                         3.   BROWSE.COM can be patched with DEBUG so
  86.                              that its right-scroll jumps by more than
  87.                              the default eight characters.  The
  88.                              address to patch is 10F in the .COM
  89.                              file.  After entering DEBUG BROWSE.COM
  90.                              type
  91.  
  92.                                   E 10F
  93.  
  94.                              and the default value (08h) will appear.
  95.                              Type the desired hexadecimal number (28
  96.                              for a 40-column increment; 50 for an 80-
  97.                              column increment) and press <Enter>.
  98.                              Then type W<Enter> to write to the disk
  99.                              and Q<Enter> to quit DEBUG.
  100.  
  101.                         4.   Requires DOS 2.0 or later.
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.